172071dd0979c250e5b88e1331902277873ed85c,src/core/org/apache/jmeter/testbeans/gui/WrapperEditor.java,WrapperEditor,getAsText,#,347

Before Change


    }

    public String getAsText() {
		String text = guiEditor.getAsText();

		if (text == null) {
			if (!acceptsNull) {

After Change


    }

    public String getAsText() {
		String text = fixGetAsTextBug(guiEditor.getAsText());

		if (text == null) {
			if (!acceptsNull) {